home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Object.dxr / 00101_UI Toggle Help Button.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  3.5 KB  |  97 lines

  1. property normalMember, NormalMemberNum, toggleMember, ImageCastLib, setting, tracking, outcurs, incurs, incursSet, customImage, customMask, oldcursor, useCustom
  2.  
  3. on translate_cursor me, setting, image, mask, Custom
  4.   if Custom then
  5.     set val to [member image, member mask]
  6.     return val
  7.   end if
  8.   return setting
  9. end
  10.  
  11. on mouseDown me
  12.   set the tracking of me to 1
  13.   Toggle(me)
  14. end
  15.  
  16. on mouseEnter me
  17.   if the tracking of me then
  18.     Toggle(me)
  19.   end if
  20. end
  21.  
  22. on mouseLeave me
  23.   if the tracking of me then
  24.     Toggle(me)
  25.   end if
  26. end
  27.  
  28. on mouseUp me
  29.   if the tracking of me then
  30.     set the tracking of me to 0
  31.   end if
  32. end
  33.  
  34. on mouseUpOutSide me
  35.   if the tracking of me then
  36.     set the tracking of me to 0
  37.   end if
  38. end
  39.  
  40. on Toggle me
  41.   setValue(me, not (the setting of me))
  42. end
  43.  
  44. on setValue me, v_me
  45.   global helptrigger
  46.   if v_me = 0 then
  47.     set the member of sprite the spriteNum of me to the normalMember of me
  48.     set the setting of me to 0
  49.     turnoffhint()
  50.     set helptrigger to 0
  51.   else
  52.     set the member of sprite the spriteNum of me to the toggleMember of me
  53.     set the setting of me to 1
  54.     turnonhint()
  55.     set helptrigger to 1
  56.   end if
  57.   updateStage()
  58. end
  59.  
  60. on beginSprite me
  61.   set oldcursor to the cursor of sprite the spriteNum of me
  62.   set val to translate_cursor(me, the incursSet of me, customImage, customMask, useCustom)
  63.   set the cursor of sprite the spriteNum of me to val
  64.   set s to the spriteNum of me
  65.   set the NormalMemberNum of me to the memberNum of sprite s
  66.   set the ImageCastLib of me to the number of castLib the castLibNum of sprite s
  67.   set the normalMember of me to member the NormalMemberNum of me of castLib the ImageCastLib of me
  68.   set the toggleMember of me to member the toggleMemberNum of me of castLib the ImageCastLib of me
  69. end
  70.  
  71. on getPropertyDescriptionList
  72.   if the currentSpriteNum = 0 then
  73.     set memdefault to 0
  74.   else
  75.     set memref to the member of sprite the currentSpriteNum
  76.     set castLibNum to the castLibNum of memref
  77.     set memdefault to member (the memberNum of member memref + 1) of castLib castLibNum
  78.   end if
  79.   set p_list to [#incursSet: [#comment: "Pointer Image:", #format: #cursor, #default: 1], #useCustom: [#comment: "Use Custom Pointer:", #format: #boolean, #default: 0], #customImage: [#comment: "Custom Image:", #format: #bitmap, #default: member 1], #customMask: [#comment: "Custom Mask:", #format: #bitmap, #default: member 1], #toggleMemberNum: [#comment: "Toggle Image:", #format: #graphic, #default: memdefault], #setting: [#comment: "Initially Toggled:", #format: #boolean, #default: 0]]
  80.   return p_list
  81. end
  82.  
  83. on SetToggleValue me, v_me
  84.   if v_me = 0 then
  85.     set the member of sprite the spriteNum of me to the normalMember of me
  86.     set the setting of me to 0
  87.   else
  88.     set the member of sprite the spriteNum of me to the toggleMember of me
  89.     set the setting of me to 1
  90.   end if
  91.   updateStage()
  92. end
  93.  
  94. on getBehaviorDescription
  95.   return "Makes a sprite work as a toggle button with automatic highlighting and mouse tracking. The behavior responds when clicked, or when the SetToggleValue or Toggle messages are receieved. Use the the UI Radio Group behavior to control toggle buttons in radio button groups." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Toggle Image - Choose the cast member to display when the button is toggled." & RETURN & "ΓÇó Initially Toggled - Turn this option to make the button toggled when it first appears." & RETURN & "MESSAGES:" & RETURN & "ΓÇó SetToggleValue {TRUE or FALSE} - Sets the toggle button." & RETURN & "ΓÇó Toggle - Switches the toggle button state."
  96. end
  97.